d1b339de17495ade167719d5f987ba588068f0dc,platform/lang-impl/src/com/intellij/platform/templates/github/ZipUtil.java,ZipUtil,unzip,#ProgressIndicator#File#ZipInputStream#NullableFunction#ContentProcessor#boolean#,84

Before Change


    }
    ZipEntry entry;
    while ((entry = stream.getNextEntry()) != null) {
      File child = unzipEntryToDir(progress, entry, unzipToDir, stream, pathConvertor, contentProcessor);
      if (singleTopLevelFolderUnwrapper != null && child != null) {
        singleTopLevelFolderUnwrapper.onFileUnzipped(child);
      }

After Change



    ZipEntry entry;
    while ((entry = stream.getNextEntry()) != null) {
      unzipEntryToDir(progress, entry, unzipToDir, stream, pathConvertor, contentProcessor);
    }

    if (unwrapSingleTopLevelFolder) {